home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 41 / Amiga Format CD41 (1999-06)(Future Publishing)(GB)[!][issue 1999-07].iso / -seriously_amiga- / misc / installer / examples / stringformat.installer < prev    next >
Text File  |  1999-04-19  |  284b  |  17 lines

  1.  
  2.  
  3. ; demonstration of the string format function
  4.  
  5. (set text1 ("%s %s %s" ("Hello")
  6.                        (" Wo%s" ("%sld " "r"))
  7.                        "!"
  8.            )
  9. )
  10.  
  11. (set text2 ("\n\nsome math: %ld * %ld = %ld" 30 40 (* 30 40)))
  12.  
  13. (exit ("%s%s" text1 text2) (quiet))
  14. (welcome)
  15.  
  16.  
  17.